home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Dev / gcc263-src.lha / gcc-2.6.3 / config / m68k / xm-amix.h < prev    next >
C/C++ Source or Header  |  1993-10-27  |  2KB  |  47 lines

  1. /* Definitions of host machine for GNU compiler.
  2.    Commodore Amiga A3000UX version.
  3.  
  4.    Copyright (C) 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. #include "m68k/xm-m68kv.h"    /* Use the System V flavor of m68k host */
  23.  
  24. #define HAVE_VPRINTF        /* Host has vprintf() in library */
  25. #define rindex strrchr
  26. #define index strchr
  27.  
  28. /* Define FULL_PROTOTYPES for protoize.c, to get <unistd.h> included.
  29.    We need this file for things like R_OK, not necessarily prototypes. */
  30.  
  31. #define FULL_PROTOTYPES
  32.  
  33. #if defined (__GNUC__) && __GNUC__ == 1
  34. #define alloca __builtin_alloca
  35. #endif
  36.  
  37. #if 0 /* I don't want individual ports to be inconsistent about this.
  38.      I regard fancy_abort as a half-solution and not the right way
  39.      to do things. --rms.  */
  40. /* The m88k and mips ports make use of fancy_abort to give possibly helpful
  41.    abort information rather than just dumping core.  They do it in their
  42.    tm-* files.  It seems more logical that this is a characteristic of
  43.    the host machine and not the target machine, so we do it here. */
  44.  
  45. #define abort fancy_abort    /* give possibly helpful abort info */
  46. #endif
  47.